

/* Content Section Styles */
.content-section {
    padding: 80px 0;
    background-color: #121213;
  }
  
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .content-heading h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px; /* Added space for divider */
  }
  
  .heading-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e5ff00, #f9cb28);
    margin-bottom: 30px;
    border-radius: 2px;
  }
  
  .content-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    padding-left: 20px;
    border-left: 2px solid #ffe600 /* Optional subtle left border */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .content-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .content-heading h1 {
      font-size: 2rem;
    }
    
    .heading-divider {
      margin-bottom: 20px;
    }
    
    .content-text p {
      padding-left: 0;
      border-left: none;
      padding-top: 20px;
      border-top: 2px solid #eee; /* Moves border to top on mobile */
    }
  }

  /* Social Media Services Section */
  .social-media-services {
    padding: 50px 0;
    background-color: #ffffff;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: #1e293b;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .service-card {
    background: white;
    padding: 25px;
    
    
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .service-icon {
    font-size: 2rem;
    color: #222222;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #1e293b;
  }
  
  .service-card p {
    color: #040035;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
      font-size: 2rem;
      margin-bottom: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .service-card {
      padding: 25px;
    }
  }
  

/* Section Styles */
/* Section Container */
.full-width-image-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 400px; /* Adjust height as needed */
  }
  
  /* Full-Width Image */
  .full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  /* Text Content */
  .image-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .image-content h4 {
    font-size: 1.8rem;
    color: #ffffff;
    
    margin: 0;
    width: 50%; /* Left-aligned text block */
    line-height: 1.4;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .full-width-image-section {
      min-height: 350px;
    }
    
    .image-content h4 {
      width: 70%;
      font-size: 1.6rem;
    }
  }
  
  @media (max-width: 768px) {
    .full-width-image-section {
      min-height: 300px;
    }
    
    .image-content h4 {
      width: 80%;
      font-size: 1.4rem;
    }
  }
  
  @media (max-width: 576px) {
    .full-width-image-section {
      min-height: 250px;
    }
    
    .image-content {
      padding: 40px 20px;
    }
    
    .image-content h4 {
      width: 100%;
      font-size: 1.2rem;
    }
  }

/* Attractive Button Styles */
.attractive-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #fa9600 0%, #ffd900 100%);
    color: white;
    border: none;
    border-radius: 50px; /* Rounded corners */
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
   
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  /* Hover Effects */
  .attractive-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #00aa00 0%, #54e401 100%);
  }
  
  /* Active/Pressed State */
  .attractive-btn:active {
    transform: translateY(1px);
  }
  
  /* Optional Ripple Effect */
  .attractive-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
  }
  
  .attractive-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(0, 0);
      opacity: 0.5;
    }
    100% {
      transform: scale(20, 20);
      opacity: 0;
    }
  }
  
  /* Alternative Color Schemes */
  /* Coral */
  .btn-coral {
    background: linear-gradient(135deg, #FF7E5F 0%, #FEB47B 100%);
    box-shadow: 0 4px 15px rgba(254, 180, 123, 0.3);
  }
  
  .btn-coral:hover {
    background: linear-gradient(135deg, #FEB47B 0%, #FF7E5F 100%);
    box-shadow: 0 8px 25px rgba(254, 180, 123, 0.4);
  }
  
  /* Emerald */
  .btn-emerald {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  }
  
  .btn-emerald:hover {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .attractive-btn {
      padding: 12px 25px;
      font-size: 0.9rem;
    }
  }

  .image-section {
    background-color: #121213;
    padding: 40px 0;
  }
  
  .image-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px; /* Tiny gap between images */
   
  }
  
  .wide-image {
    flex: 60%;
    overflow: hidden; /* Ensures no overflow */
    border-radius: 8px !important;
  }
  
  .narrow-image {
    flex: 40%;
    overflow: hidden;
    border-radius: 8px !important;
  }
  
  .wide-image img,
  .narrow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Responsive behavior */
  @media (max-width: 768px) {
    .image-container {
      flex-direction: column;
    }
    
    .wide-image,
    .narrow-image {
      flex: 100%;
    }
    
    .wide-image img,
    .narrow-image img {
      height: 300px; /* Fixed height on mobile */
    }
  }

  /* Base Layout (Same as Your Preferred Structure) */
.brand-section {
    padding: 80px 0;
    background: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-heading {
    text-align: left;
    margin-bottom: 50px;
    font-size: 36px;
    color: #333;
  }
  
  .content-wrapper {
    display: flex;
    gap: 40px;
  }
  
  .image-column {
    flex: 1;
  }
  
  .image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .content-column {
    flex: 1;
  }
  
  /* Static Content Styling */
  .static-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .static-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
  }
  
  .read-more {
    display: inline-block;
    margin-top: 10px;
    color: #0066cc;
    font-weight: 600;
  }
  
  /* Plus Sections Styling */
  .plus-sections {
    margin-top: 30px;
  }
  
  .plus-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
  }
  
  .plus-header {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .plus-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #0066cc;
    transition: transform 0.3s;
  }
  
  .plus-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 39px;
  }
  
  .plus-content p {
    margin: 15px 0;
    color: #555;
  }
  
  /* Active State */
  .plus-item.active .plus-icon {
    transform: rotate(45deg);
  }
  
  .plus-item.active .plus-content {
    max-height: 200px;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .content-wrapper {
      flex-direction: column;
    }
    
    .image-column {
      margin-bottom: 30px;
    }
  }


  .creative-design-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    overflow-x: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADING STYLES ===== */
.main-heading {
    font-size: 2.25rem; /* 36px */
    color: #222;
    text-align: center;
    margin-bottom: 1.25rem; /* 20px */
    font-weight: 700;
    position: relative;
}

.main-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0066cc;
    margin: 15px auto 0;
}

/* ===== BULLET DIVIDER ===== */
.bullet-line {
    display: flex;
    justify-content: center;
    gap: 2.5rem; /* 40px */
    margin: 1.875rem auto; /* 30px */
}

.bullet {
    width: 12px;
    height: 12px;
    background-color: #0066cc;
    border-radius: 50%;
    opacity: 0.7;
}

/* ===== CARD STYLES ===== */
.benefits-row {
    display: flex;
    gap: 1.25rem; /* 20px */
    justify-content: space-between;
    margin-top: 1.25rem; /* 20px */
}

.benefit-card {
    background: white;
    border-radius: 8px;
    padding: 1.875rem; /* 30px */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.benefit-number {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.9375rem; /* 15px */
}

.benefit-content h3 {
    font-size: 1.25rem; /* 20px */
    color: #222;
    margin-bottom: 0.9375rem; /* 15px */
    font-weight: 600;
}

.benefit-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem; /* 16px */
}

/* ===== CONNECTING LINES BETWEEN CARDS ===== */
.benefit-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.625rem; /* -10px */
    top: 2.5rem; /* 40px */
    width: 1.25rem; /* 20px */
    height: 2px;
    background: #ddd;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .benefits-row {
        flex-wrap: wrap;
    }
    
    .benefit-card {
        min-width: calc(50% - 20px);
    }
    
    .bullet-line {
        gap: 1.25rem; /* 20px */
    }
    
    .benefit-card:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 1.75rem; /* 28px */
    }
    
    .benefit-card {
        min-width: 100%;
    }
    
    .benefit-card::after {
        display: none;
    }
    
    .bullet-line {
        gap: 0.625rem; /* 10px */
    }
}
  
<!-- Include Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">